Socket
Socket
Sign inDemoInstall

ranges-apply

Package Overview
Dependencies
2
Maintainers
1
Versions
161
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    ranges-apply

Take an array of string index ranges, delete/replace the string according to them


Version published
Weekly downloads
92K
decreased by-2.45%
Maintainers
1
Created
Weekly downloads
 

Readme

Source

ranges-apply

Take an array of string index ranges, delete/replace the string according to them

page on npm page on npm page on GitLab Downloads per month Code style: prettier MIT License libera manifesto

Install

npm i ranges-apply

Quick Take

import { strict as assert } from "assert";
import applyR from "ranges-apply";

const oldString = `The quick brown fox jumps over the lazy dog.`;
const ranges = [
  [4, 19, "bad grey wolf"],
  [35, 43, "little Red Riding Hood"],
];
assert.equal(
  applyR(oldString, ranges),
  "The bad grey wolf jumps over the little Red Riding Hood."
);

Documentation

Please visit codsen.com for a full description of the API and examples.

Licence

MIT License

Copyright (c) 2010-2020 Roy Revelt and other contributors

ok codsen star

Keywords

FAQs

Last updated on 10 Nov 2020

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc